home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / bonsai_flaws.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  60 lines

  1. #
  2. # This script was written by Renaud Deraison
  3. #
  4.  
  5. if (description)
  6. {
  7.  script_id(11440);
  8.  script_bugtraq_id(5517);
  9.  script_version ("$Revision: 1.6 $");
  10.  
  11.  script_cve_id("CAN-2003-0152", "CAN-2003-0153", "CAN-2003-0154", "CAN-2003-0155");
  12.         
  13.  
  14.  script_name(english:"Bonsai Mutiple Flaws");
  15.  desc["english"] = "
  16. The remote host has the CGI suite 'Bonsai' installed.
  17.  
  18. This suite is used to browse a CVS repository with a web browser.
  19.  
  20. The remote Bonsai seems to be vulnerable to various flaws, ranging from
  21. path disclosure and cross site scripting to remote command execution.
  22.  
  23. Solution : Upgrade to the latest version of Bonsai
  24. Risk factor : High";
  25.  
  26.  script_description(english:desc["english"]);
  27.  script_summary(english:"Determine if bonsai is vulnerable to xss attack");
  28.  script_category(ACT_GATHER_INFO);
  29.  script_family(english:"CGI abuses", francais:"Abus de CGI");
  30.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  31.  script_dependencie("find_service.nes", "no404.nasl");
  32.  script_require_ports("Services/www", 80);
  33.  exit(0);
  34. }
  35.  
  36. include("http_func.inc");
  37. include("http_keepalive.inc");
  38.  
  39. port = get_http_port(default:80);
  40.  
  41. if(!get_port_state(port))exit(0);
  42.  
  43.  
  44. dirs = make_list(cgi_dirs());
  45. foreach d (dirs)
  46. {
  47.  url = string(d, "/cvslog.cgi?file=<SCRIPT>window.alert</SCRIPT>");
  48.  req = http_get(item:url, port:port);
  49.  buf = http_keepalive_send_recv(port:port, data:req);
  50.  if( buf == NULL ) exit(0);
  51.  
  52.  if(ereg(pattern:"^HTTP/[0-9]\.[0-9] 200 ", string:buf) &&
  53.     "Rcs file" >< buf &&
  54.      "<SCRIPT>window.alert</SCRIPT>" >< buf)
  55.    {
  56.     security_hole(port);
  57.     exit(0);
  58.    }
  59. }
  60.